Version

HasAppointmentsInRange(DateTimeRange,IEnumerable<ScheduleResource>,Boolean) Method

Returns an array of dates representing the days in the given date/time range which contain appointments.
Syntax
public abstract DateQueryResult HasAppointmentsInRange( 
   DateTimeRange range,
   IEnumerable<ScheduleResource> resources,
   bool findFirst
)

Parameters

range
The range of time to test.
resources
Optional list of resources on which to filter. If a non-null value is specified, only appointments which belong to one of the specified resources is returned.
findFirst
If true the query terminates as soon as it encounters activity in the given range. Use this if you are not interested in which dates have activity, only whether each date in the specified range contains any activity at all.

Return Value

A Infragistics.Scheduler.Data.DateQueryResult object containing the result of the query.
Remarks

The HasAppointmentsInRange

Requirements

Target Platforms: Android 4.4+, iOS 8+

Development Environments: Visual Studio 2015+, Visual Studio for Mac Preview, Xamarin for Visual Studio 4.2+

See Also